home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
BORL_TIP
/
TI100
/
TI244.ASC
< prev
next >
Wrap
Text File
|
1991-09-11
|
830b
|
67 lines
PRODUCT : TURBO GRAPHIX TOOLBOX NUMBER : 244
VERSION : 1.0xx
OS : PC-DOS
DATE : March 13, 1986 PAGE : 1/1
TITLE : USING WHEREX AND WHEREY
The functions WhereX and WhereY do not return proper values from
a program using the Turbo Graphix Toolbox. The following
functions can be included in your programs to return the proper
values for WhereX and WhereY. In order for these functions to
return correct values it is necessary for your program to call
either GoToXY or InitGraphics before using them.
function WhereX : integer;
begin
WhereX := XTextGlb;
end;
function WhereY : integer;
begin
WhereY := YTextGlb;
end;